1
|
|
|
var alerts = 0; |
2
|
|
|
$('#leftlayoutset' ).submit( |
3
|
|
|
function( e ) { |
4
|
|
|
var data = new FormData(this); |
5
|
|
|
jQuery.each(jQuery('#fileToUpload')[0].files, function(i, file) { |
6
|
|
|
data.append('file-'+i, file); |
7
|
|
|
}); |
8
|
|
|
|
9
|
|
|
$.ajax( { |
10
|
|
|
url: '/post/channel_update_new', |
11
|
|
|
type: 'POST', |
12
|
|
|
data: data, |
13
|
|
|
cache: false, |
14
|
|
|
processData: false, |
15
|
|
|
contentType: false, |
16
|
|
|
success: function(result){ |
17
|
|
|
alerts++; |
18
|
|
|
addAlert("editsuccess_" + alerts, "Successfully updated your channel!"); |
19
|
|
|
showAlert("#editsuccess_" + alerts); |
20
|
|
|
console.log("DEBUG: " + result); |
|
|
|
|
21
|
|
|
} |
22
|
|
|
} ); |
23
|
|
|
e.preventDefault(); |
24
|
|
|
} |
25
|
|
|
); |
26
|
|
|
|
27
|
|
|
function getData() { |
28
|
|
|
var layout = draggables2json(); |
29
|
|
|
|
30
|
|
|
$.ajax({ |
31
|
|
|
url: 'set_customization.php', |
32
|
|
|
method: 'POST', |
33
|
|
|
dataType: 'text', |
34
|
|
|
data: { |
35
|
|
|
layout: layout, |
36
|
|
|
}, |
37
|
|
|
success: function(response) { |
|
|
|
|
38
|
|
|
alert("Successfully updated your channel layout."); |
|
|
|
|
39
|
|
|
} |
40
|
|
|
}); |
41
|
|
|
}; |
42
|
|
|
|
43
|
|
|
function onDragStart(event) { |
44
|
|
|
event |
45
|
|
|
.dataTransfer |
46
|
|
|
.setData('text/plain', event.target.id); |
47
|
|
|
|
48
|
|
|
event |
49
|
|
|
.currentTarget |
50
|
|
|
.style |
51
|
|
|
.backgroundColor = '#f2f2f2;'; |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
function onDrop(event) { |
55
|
|
|
const id = event |
56
|
|
|
.dataTransfer |
57
|
|
|
.getData('text'); |
58
|
|
|
|
59
|
|
|
const draggableElement = document.getElementById(id); |
60
|
|
|
const dropzone = event.target; |
61
|
|
|
dropzone.appendChild(draggableElement); |
62
|
|
|
|
63
|
|
|
event |
64
|
|
|
.dataTransfer |
65
|
|
|
.clearData(); |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
function onDragOver(event) { |
69
|
|
|
event.preventDefault(); |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
function draggables2json() { |
73
|
|
|
draggables = $("#layout").children(); |
|
|
|
|
74
|
|
|
outj = {}; |
|
|
|
|
75
|
|
|
for (di=0; di < draggables.length; di++) { |
|
|
|
|
76
|
|
|
outj[di] = draggables[di].textContent.replace(/\s+$/, ''); |
77
|
|
|
} |
78
|
|
|
return JSON.stringify(outj); |
79
|
|
|
} |